summaryrefslogtreecommitdiff
path: root/src/pages/[locale]/furthsettins/lallans/index.astro
blob: 3e4fd466197e0b6d99124367d7c4de12656c7da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
import Page from '$layouts/Page.astro';
import localeStaticPaths from '$lib/localeStaticPaths';
import translate from '$i18n/translate';
import tFurthsettins from '$i18n/translations/pages/furthsettins';
import type Locale from '$types/Locale';
import LallansIssuesGallery from '$components/LallansIssuesGallery.astro';

export async function getStaticPaths() {
  return localeStaticPaths;
}

const locale = Astro.params.locale as Locale;
const t = translate(locale);
---

<Page title={t(tFurthsettins, { key: 'title' })}>
  <section class="section--full-width">
    <h1>Lallans</h1>
    <LallansIssuesGallery />
  </section>
</Page>